home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Network Login Picture 2.xpl < prev    next >
Text File  |  2001-04-13  |  1KB  |  43 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH 1"="Startup/Shutdown\Startup\Windows 9x/ME\60) Before Login Window"
  5. "UIPATH 2"="Startup/Shutdown\Startup\Windows NT/2K/XP\30) Before Login Window"
  6. "NAME"="Background: Tile"
  7. "VERSION"="1.03"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="Tile Pre-Login Window wallpaper"
  10. "DESCRIPTION 1"="This plug-in can be used to tile the pictures that is displayed before any user is able to login (means: before the login window appears)."
  11. "AUTHOR"="Xteq Systems"
  12. "CONTACTURL"="http://www.xteq.com"
  13. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  14. "COMMENT 1"=" "
  15. "COMMENT 2"="Thanks to CptSiskoX for this setting."
  16.  
  17.  
  18. sPath="HKUS\.DEFAULT\Control Panel\Desktop\TileWallpaper"
  19. Sub Plugin_Initialize 
  20.  s=RegReadValue(sPath)
  21.  if s="1" then SetUIElement 1,true
  22. End Sub
  23.  
  24. Sub Plugin_CheckData(ElementIndex)
  25. End Sub
  26.  
  27. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  28.  s=GetUIElement(1)
  29.  if s=true then
  30.     s=1
  31.  else
  32.     s=0
  33.  end if
  34.  Call RegWriteValue(sPath,s,1)
  35.  
  36.  Call Logoff
  37.  Call MsgInformation("Setting has been set.")
  38. End Sub
  39.  
  40. Sub Plugin_Terminate 
  41. End Sub
  42.  
  43.